home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / WIN_VB / TOOLBU.ZIP;1 / FRMABOUT.FRM (.txt) next >
Encoding:
Visual Basic Form  |  1994-05-07  |  4.0 KB  |  126 lines

  1. VERSION 2.00
  2. Begin Form frmAbout 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   3  'Fixed Double
  5.    ClientHeight    =   2505
  6.    ClientLeft      =   2010
  7.    ClientTop       =   3270
  8.    ClientWidth     =   5280
  9.    ControlBox      =   0   'False
  10.    ForeColor       =   &H00000000&
  11.    Height          =   2910
  12.    Left            =   1950
  13.    LinkTopic       =   "Form2"
  14.    MaxButton       =   0   'False
  15.    MinButton       =   0   'False
  16.    ScaleHeight     =   2505
  17.    ScaleWidth      =   5280
  18.    Top             =   2925
  19.    Width           =   5400
  20.    Begin CommandButton butOK 
  21.       Caption         =   "&OK"
  22.       Height          =   375
  23.       Left            =   2100
  24.       TabIndex        =   0
  25.       Top             =   2040
  26.       Width           =   1215
  27.    End
  28.    Begin Label Label7 
  29.       AutoSize        =   -1  'True
  30.       BackColor       =   &H00C0C0C0&
  31.       BackStyle       =   0  'Transparent
  32.       Caption         =   "This .VBX is Public Domain"
  33.       FontBold        =   -1  'True
  34.       FontItalic      =   0   'False
  35.       FontName        =   "MS Sans Serif"
  36.       FontSize        =   12
  37.       FontStrikethru  =   0   'False
  38.       FontUnderline   =   0   'False
  39.       ForeColor       =   &H00FF0000&
  40.       Height          =   300
  41.       Left            =   1080
  42.       TabIndex        =   7
  43.       Top             =   0
  44.       Width           =   3255
  45.    End
  46.    Begin Label Label6 
  47.       AutoSize        =   -1  'True
  48.       BackColor       =   &H00C0C0C0&
  49.       BackStyle       =   0  'Transparent
  50.       Caption         =   "GOOD or BAD"
  51.       FontBold        =   -1  'True
  52.       FontItalic      =   0   'False
  53.       FontName        =   "MS Sans Serif"
  54.       FontSize        =   9.75
  55.       FontStrikethru  =   0   'False
  56.       FontUnderline   =   0   'False
  57.       ForeColor       =   &H000000FF&
  58.       Height          =   240
  59.       Left            =   1980
  60.       TabIndex        =   6
  61.       Top             =   1080
  62.       Width           =   1470
  63.    End
  64.    Begin Label Label5 
  65.       AutoSize        =   -1  'True
  66.       BackColor       =   &H00C0C0C0&
  67.       BackStyle       =   0  'Transparent
  68.       Caption         =   "PLEASE Let Me Know What You Think!!!"
  69.       FontBold        =   -1  'True
  70.       FontItalic      =   0   'False
  71.       FontName        =   "MS Sans Serif"
  72.       FontSize        =   9.75
  73.       FontStrikethru  =   0   'False
  74.       FontUnderline   =   0   'False
  75.       ForeColor       =   &H000000FF&
  76.       Height          =   240
  77.       Left            =   720
  78.       TabIndex        =   5
  79.       Top             =   840
  80.       Width           =   4095
  81.    End
  82.    Begin Label Label4 
  83.       AutoSize        =   -1  'True
  84.       BackStyle       =   0  'Transparent
  85.       Caption         =   "CIS: 100023,702"
  86.       Height          =   195
  87.       Left            =   2040
  88.       TabIndex        =   4
  89.       Top             =   1440
  90.       Width           =   1440
  91.    End
  92.    Begin Label Label3 
  93.       AutoSize        =   -1  'True
  94.       BackStyle       =   0  'Transparent
  95.       Caption         =   "InterNet: AndyWest@Sound.Demon.Co.UK"
  96.       Height          =   195
  97.       Left            =   1080
  98.       TabIndex        =   3
  99.       Top             =   1680
  100.       Width           =   3645
  101.    End
  102.    Begin Label Label2 
  103.       Alignment       =   2  'Center
  104.       BackStyle       =   0  'Transparent
  105.       Caption         =   "Written by Andrew Westacott"
  106.       Height          =   255
  107.       Left            =   420
  108.       TabIndex        =   2
  109.       Top             =   600
  110.       Width           =   4695
  111.    End
  112.    Begin Label Label1 
  113.       Alignment       =   2  'Center
  114.       BackStyle       =   0  'Transparent
  115.       Caption         =   "Toolbar button custom control demonstration"
  116.       Height          =   315
  117.       Left            =   240
  118.       TabIndex        =   1
  119.       Top             =   360
  120.       Width           =   4935
  121.    End
  122. Option Explicit
  123. Sub butOK_Click ()
  124.     Unload Me
  125. End Sub
  126.